HTMLify
index.html
Views: 356 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="icon" href="https://cdn-icons-png.flaticon.com/512/25/25231.png" type="image/x-icon"> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css"> <link rel="stylesheet" href="./css/style.css"> <title>Github Profiles</title> </head> <body> <header> <div class="logo"> <i class="fab fa-github"></i> </div> <div class="name"> GITHUB CHECKER </div> <form id="form"> <div class="search"> <input type="text" id="search" placeholder="Search a Github User" /> <i class="fas fa-search"></i> </div> </form> </header> <main id="main"> </main> <script src="./js/script.js"></script> </body> </html> |